projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a98ac02
)
(xml-parse-dtd): Fix misplaced paren.
author
Andreas Schwab
<schwab@suse.de>
Fri, 7 Nov 2003 16:05:26 +0000
(16:05 +0000)
committer
Andreas Schwab
<schwab@suse.de>
Fri, 7 Nov 2003 16:05:26 +0000
(16:05 +0000)
lisp/xml.el
patch
|
blob
|
history
diff --git
a/lisp/xml.el
b/lisp/xml.el
index 279fe48b16ba0233a6d71ee9e7c9a029ab687c04..a6159554b3f7641f8a7727f3bdb892cc7e7ca1f5 100644
(file)
--- a/
lisp/xml.el
+++ b/
lisp/xml.el
@@
-546,7
+546,7
@@
This follows the rule [28] in the XML specifications."
;; rule [45]: the element declaration must be unique
(if (assoc element dtd)
(error "XML: element declarations must be unique in a DTD (<%s>)"
- element)
+ element)
)
;; Store the element in the DTD
(push (list element type) dtd)
@@
-559,7
+559,7
@@
This follows the rule [28] in the XML specifications."
;; Skip the end of the DTD
(search-forward ">"))))
- (nreverse dtd)))
)
+ (nreverse dtd)))
(defun xml-parse-elem-type (string)
"Convert element type STRING into a Lisp structure."